home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / tcomm6.zip / LCLIB.EXE / LCBBS.H next >
Text File  |  1991-08-26  |  485b  |  30 lines

  1. /*
  2. ** lcbbs.h -
  3. **    bbs/modem type functions
  4. **    Copyright (c) 1988,1991 Information Technology, Ltd.
  5. **        -- All Rights Reserved --
  6. */
  7.  
  8. #ifndef _PPC_EV
  9. #define _PPC_EV    1
  10.  
  11. #define online(x) (lc_mstat(x) & DCD)
  12.  
  13. #ifdef M_I86
  14. #define setmem(d,c,v) memset(d,v,c)
  15. #endif
  16.  
  17. /*
  18. **    function prototypes
  19. */
  20. int check_for_call(unsigned);
  21. int get_modem_reply(unsigned);
  22. void disconnect(unsigned);
  23. int reset_modem(unsigned);
  24.  
  25. #ifdef M_I86
  26. void sleep(int);
  27. #endif
  28.  
  29. #endif
  30.